home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libclink / slist.h < prev   
Encoding:
C/C++ Source or Header  |  1995-02-23  |  265 b   |  17 lines

  1. class StringList {
  2.  public:
  3.   StringList();
  4.   ~StringList();
  5.   int count;
  6.   char *operator[](int);
  7.   void add(char *);
  8.   void del(char *);
  9.   int  has(char *);
  10.   void flush(void);
  11.   void sort(void);
  12.  private:
  13.   int maxc;
  14.   int max;
  15.   char **data;
  16. };
  17.